Skip to main content

Change App Name

To change your app name, follow these steps. You need to set your app name in three different places.

1. Change App Name in Android

Also you need to set the app name from your Android project, follow these steps:

1.1 Open the AndroidManifest.xml file

  • Open your project folder.

  • Navigate to <project>/android/app/src/main/AndroidManifest.xml.

1.2 Modify the android:label

  • In the AndroidManifest.xml file, find the following line and set your desired app name:

    android:label="YOUR_APP_NAME"

2. Change App Name in Ios

Also you need to set the app name from your Ios project, follow these steps:

2.1 Open the info.plist file

  • Open your project folder.

  • Navigate to <project>/iOS/Runner/info.plist.

2.2 Modify the CFBundleName

  • In the info.plist file, find the following line and set your desired app name:

    <key>CFBundleDisplayName</key>
    <string>YOUR_APP_NAME</string>
    <key>CFBundleName</key>
    <string>YOUR_APP_NAME</string>